




C Program to print Alphabet Triangle
There are different triangles that can be printed. Triangles can be generated by alphabets or numbers. In this c program, we are going to print alphabet triangles.
Let's see the c example to print alphabet triangle.

#include  
#include
int main(){
  int ch=65;  
    int i,j,k,m;  
  system("cls");
    for(i=1;i<=5;i++)  
    {  
        for(j=5;j>=i;j--)  
            printf(" ");  
        for(k=1;k<=i;k++)  
            printf("%c",ch++);  
            ch--;  
        for(m=1;m
Output:

     A
    ABA
   ABCBA
  ABCDCBA
 ABCDEDCBA













Please Share





